04-Password checker solution.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

password="open123"
print('Enter password:')
answer=input()
if answer==password:
                print("yes")
else:
                print("no")
                    

Try it yourself